const hash/maphash.bufSize

21 uses

	hash/maphash (current package)
		maphash.go#L49: 	if len(b) > bufSize {
		maphash.go#L51: 		for len(b) > bufSize {
		maphash.go#L52: 			state = rthash(b[:bufSize], state)
		maphash.go#L53: 			b = b[bufSize:]
		maphash.go#L72: 	for len(s) > bufSize {
		maphash.go#L73: 		state = rthashString(s[:bufSize], state)
		maphash.go#L74: 		s = s[bufSize:]
		maphash.go#L106: 	buf   [bufSize]byte // unflushed byte buffer
		maphash.go#L114: const bufSize = 128
		maphash.go#L147: 	if h.n > 0 && h.n <= bufSize {
		maphash.go#L150: 		if h.n < bufSize {
		maphash.go#L159: 	if len(b) > bufSize {
		maphash.go#L161: 		for len(b) > bufSize {
		maphash.go#L162: 			h.state.s = rthash(b[:bufSize], h.state.s)
		maphash.go#L163: 			b = b[bufSize:]
		maphash.go#L177: 	if h.n > 0 && h.n <= bufSize {
		maphash.go#L180: 		if h.n < bufSize {
		maphash.go#L186: 	if len(s) > bufSize {
		maphash.go#L188: 		for len(s) > bufSize {
		maphash.go#L189: 			h.state.s = rthashString(s[:bufSize], h.state.s)
		maphash.go#L190: 			s = s[bufSize:]